home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000114-20000217 / 000274_news@columbia.edu _Wed Feb 16 15:10:27 2000.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id PAA03276
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Wed, 16 Feb 2000 15:10:27 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id BAA02678
  7.     for kermit.misc@watsun.cc.columbia.edu; Thu, 10 Feb 2000 01:33:15 -0500 (EST)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  10. Subject: Re: Help with telnet in C-Kermit 7
  11. Date: 10 Feb 2000 06:33:12 GMT
  12. Organization: Columbia University
  13. Message-ID: <87tm38$2j3$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@columbia.edu
  15.  
  16. In article <950141817.1720873735@news.msu.edu>,
  17. John Valenti  <valenti@msu.edu> wrote:
  18. : I'm trying to move a script from K95 to C-kermit.
  19. : The connection uses "telnet pilot.msu.edu:105" which works
  20. : with K95 and C-kermit 6.1.193, but fails under 7.0
  21. : I added some commands to "set telopt ... refused" for terminal-type,
  22. : naws, new-environment and kermit. That helped, but the connection
  23. : is still eventually refused, waiting for the "DO Kermit" response.
  24. : I tried the /raw option, that didn't help. Using the /nowait option starts
  25. : the connection, but then it acts weird a few minutes later.
  26. : Do I need to use the "set telnet bug binary-me-means-u-too" options?
  27. : I don't quite understand the manual information on those...
  28. : ===============
  29. : The port 105 option above connects to a CSO (directory) server.  When
  30. : it works, a command like "query name=aa" will return info about people
  31. : with last names starting with aa. (Try it if you want)
  32. : I would like to use 7.0 for the Kerbang scripts and command line
  33. : arguments.
  34. : Thanks for any help!
  35.  
  36. The TELNET command in C-Kermit 7.0 and Kermit 95 1.1.18 or higher
  37. means to use the TELNET protocol no matter what port is being 
  38. specified.  If you do not want to use the TELNET protocol then 
  39. the SET HOST command should be used instead.  TELNET is shorthand
  40. for 
  41.  
  42.   SET HOST /CONNECT host port /TELNET
  43.  
  44. Using TELNET protocol to this host:port yields the following:
  45.  
  46.   telnet pilot.msu.edu:105
  47.    DNS Lookup...  Trying 35.9.5.117...  Reverse DNS Lookup... (OK)  
  48.   -
  49.   ?Telnet Protocol Timeout - connection closed
  50.   ?Telnet waiting for response to WILL TERMINAL-TYPE
  51.   ?Telnet waiting for response to WILL NAWS
  52.   ?Telnet waiting for response to WILL AUTHENTICATION
  53.   ?Telnet waiting for response to WILL NEW-ENVIRONMENT
  54.   Can't connect to pilot017.cl.msu.edu:105
  55.  
  56. Which is because your host does not respond to TELNET negotiations.
  57. When the command
  58.  
  59.   SET HOST /CONNECT pilot.msu.edu:105 /RAW
  60.  
  61. is used I am connected and the query works as specified if the end of
  62. line is LF and not CR.
  63.  
  64.  
  65.  
  66.     Jeffrey Altman * Sr.Software Designer * Kermit-95 for Win32 and OS/2
  67.                  The Kermit Project * Columbia University
  68.               612 West 115th St #716 * New York, NY * 10025
  69.   http://www.kermit-project.org/k95.html * kermit-support@kermit-project.org